runtime.hexdumper.dataPos (field)

11 uses

	runtime (current package)
		hexdump.go#L73: 	dataPos  uint8
		hexdump.go#L90: 	if h.dataPos > 0 {
		hexdump.go#L91: 		n := copy(h.dataBuf[h.dataPos:], data)
		hexdump.go#L92: 		h.dataPos += uint8(n)
		hexdump.go#L94: 		if h.dataPos < uint8(len(h.dataBuf)) {
		hexdump.go#L98: 		h.dataPos = 0
		hexdump.go#L108: 	h.dataPos = uint8(copy(h.dataBuf[:], data))
		hexdump.go#L112: 	if h.dataPos > 0 {
		hexdump.go#L113: 		h.flushLine(h.dataBuf[:h.dataPos])
		hexdump.go#L152: 	h.dataPos = uint8(h.addr - nAddr)
		hexdump.go#L239: 	h.dataPos = 0